Add openalex and format - #1
Merged
Merged
Conversation
lemire
approved these changes
Aug 8, 2026
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Three small additions to the benchmark harness:
Raise the serial batch when the longest document requires it
iterate_many's batch must exceed the longest document, or the serialbaseline fails with
CAPACITY. The batch now grows automatically when acorpus demands it; the established corpora keep their 1 MiB batch, so no
existing measurement changes.
Add the OpenAlex authors dataset
A new paper dataset: the 232,330 author records updated on 2026-03-30 in
the OpenAlex snapshot (CC0, ~6.1 GB, largest record ~1.37 MB), hosted on
Zenodo and pinned by record and size.
datasets.shfetches it as part ofthe default corpus (reused via
--corpus-fromwhen the peer has it), andthe query
$.display_name, $.works_countis implemented in all sixengines (simdjson, Pison, yyjson, RapidJSON, Boost.JSON, nlohmann/json).
Add a stream-format overhead study (comma vs newline)
An opt-in
formatsection measuring the same documents asnewline-delimited and comma-delimited input, serially and on simdjson's
two-thread pipeline — the measured cost of the comma-delimited format.